clear — Clear variable or function


\begin{rail}
Clear : 'clear' '(' (( Scalar \vert Matrix \vert List \vert String \vert Function ) +
',' ) ')' ;
\end{rail}
clear is a function that allows you to clean up the symbol table. It deletes the variables and functions that you specify in the argument list. clear accepts up to 32 arguments, and returns the number of objects that have been successfully cleared. You can not clear a built-in function. You should beware of clearing the values of pi and eps, as many R-files make implicit use of these. If you wish to clear the whole symbol table, use the clearall function.

Subsections